home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-09-20 | 995 b | 53 lines |
- #!smake
- include $(ROOT)/usr/include/make/commondefs
-
- # There are no 64-bit movie libraries
- #
- #if $(OBJECT_STYLE:M32*) != ""
- MOVIELIBS = -lvkSGI -lmovieGL -laudio -lcl -ldmedia -lGL -lGLw
- MOVIEBUTTON_TGT = moviebutton
- #elif $(OBJECT_STYLE:MN32*) != ""
- # MOVIELIBS in really only needed for the moviebutton demo, so we set
- # -woff 84 to avoid spurious warnings building the other targets.
- MOVIELIBS = -lvkSGI -Wl,-woff,84 -lmovieGL -laudio -lcl -ldmedia -lGL -lGLw
- MOVIEBUTTON_TGT = moviebutton
- #endif
-
- MOTIFLIBS = -lSgm -lXm -lXt -lX11 -lPW
- VKLIBS = $(VKLIBPATH) -lvk -lXpm -lvkhelp
-
- LLDLIBS= $(MOVIELIBS) $(VKLIBS) $(MOTIFLIBS) -lm
- LC++FLAGS=$(VKINCLUDEPATH)
-
- DIRS=\
- $(NULL)
-
- C++FILES= \
- $(NULL)
-
- HEADERS= \
- $(NULL)
-
- TARGETS= \
- NodesDemo \
- checkbox \
- complete \
- graph \
- modified \
- $(MOVIEBUTTON_TGT) \
- outliner \
- outliner_asb \
- radiobox \
- resizer \
- tab \
- $(NULL)
-
- default all:
- @$(MAKE) targets
-
- headers:
-
- targets: $(TARGETS)
-
- include $(COMMONRULES)
-